home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Just Call Me Internet
/
Just Call Me Internet.iso
/
com
/
computer
/
midi_com
/
sourcen
/
mc_drive.mid
/
cookie.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-12-06
|
244 b
|
19 lines
#ifndef _COOKIE_H
#define _COOKIE_H
union clong {
char aschar[4];
long aslong;
};
struct cookie {
union clong tag;
long value;
};
typedef struct cookie COOKIE;
#define CJAR ((COOKIE **) 0x5a0L)
#endif /* _COOKIE_H */